home *** CD-ROM | disk | FTP | other *** search
/ PC World 1999 October / PCWorld_1999-10_cd1.bin / Software / Servis / X-setup / _SETUP.1 / XQ Startmenu Items 1.xpl < prev    next >
Text File  |  1999-06-13  |  2KB  |  78 lines

  1. "FILE"="Xteq Systems X-Setup Plugin 5.0"
  2. "TYPE"="6"
  3. "COUNT"="4"
  4. "UIPATH"="Appearance\Start menu\Visible Items"
  5. "NAME"="Visible Items #1"
  6. "VERSION"="1.6"
  7. "LANGUAGE"="VBScript"
  8. "TEXT 1"="Show "Favorites" in Start menu"
  9. "TEXT 2"="Show "Recent Documents" in Start menu"
  10. "TEXT 3"="Show "Run..." in Start menu"
  11. "TEXT 4"="Show "Exit..." in Start menu"
  12. "DESCRIPTION 1"="Use this plug-in to show or hide some of the items in the Start menu."
  13. "DESCRIPTION 2"="NOTE: "Show Favorites" requires Internet Explorer 4."
  14. "AUTHOR"="Xteq Systems"
  15. "COPYRIGHT"="Copyright ⌐ Xteq Systems - All Rights Reserved"
  16. "COMMENT 1"="For more information, go to http://www.xteq.com or write to TeXHeX@xteq.com."
  17.  
  18.  
  19. 'Declaration of some constants
  20. sP="HKCU\Software\Microsoft\Windows\CurrentVersion\Policies\Explorer\"
  21.  
  22. 'Called when the Plugin is started
  23. SUB Plugin_Initialize 
  24.  i=RegReadValue(sp&"NoFavoritesMenu") 'DW
  25.  If IsEmpty(i) or i=0 then SetUIElement 1,true
  26.  
  27.  i=RegReadValue(sp&"NoRecentDocsMenu") 'DW
  28.  if IsEmpty(i) or i=0 then SetUIElement 2,true
  29.  
  30.  i=RegReadValue(sp&"NoRun") 'DW
  31.  if IsEmpty(i) or i=0 then SetUIElement 3,true
  32.  
  33.  i=RegReadValue(sp&"NoClose") 'DW
  34.  if IsEmpty(i) or i=0 then SetUIElement 4,true 
  35. END SUB
  36.  
  37. 'Called when the Plugin should validate the Data the user has entered
  38. SUB Plugin_CheckData(ElementIndex)
  39. END SUB
  40.  
  41. 'Called when the Plugin should apply the changes
  42. SUB Plugin_Apply(ElementIndex,ElementSubIndex) 
  43.  b=GetUIElement(1)
  44.  if b=true then
  45.   Call RegWriteValue(sp&"NoFavoritesMenu",0,2)
  46.  else
  47.   Call RegWriteValue(sp&"NoFavoritesMenu",1,2)
  48.  end if
  49.  
  50.  b=GetUIElement(2)
  51.  if b=true then
  52.   Call RegWriteValue(sp&"NoRecentDocsMenu",0,2)
  53.  else
  54.   Call RegWriteValue(sp&"NoRecentDocsMenu",1,2)
  55.  end if
  56.  
  57.  b=GetUIElement(3)
  58.  if b=true then
  59.   Call RegWriteValue(sp&"NoRun",0,2)
  60.  else
  61.   Call RegWriteValue(sp&"NoRun",1,2)
  62.  end if
  63.  
  64.  b=GetUIElement(4)
  65.  if b=true then
  66.   Call RegWriteValue(sp&"NoClose",0,2)
  67.  else
  68.   Call RegWriteValue(sp&"NoClose",1,2)
  69.  end if
  70.  
  71.  
  72.  Call Logoff
  73. END SUB
  74.  
  75. 'Called when the Plugin is about to be removed from memory
  76. SUB Plugin_Terminate
  77. END SUB
  78.